home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-09-14 | 1.6 KB | 82 lines | [TEXT/????] |
- #//////////////////////////////////////////////////////////////////////////
- #//
- #// FILE NAME
- #// proto.make
- #//
- #// AUTHOR
- #// Scott Haney
- #//
- #// CREATED
- #// May 30, 1994
- #//
- #// DESCRIPTION
- #// Controls Macintosh builds of the PROTO test program for PCCTS.
- #//
- #//////////////////////////////////////////////////////////////////////////
-
- ObjDir = :Macintosh:
- SymDir = :::support:sym:
- SymObjDir = :::support:sym:Macintosh:
-
- COptions = -mc68020 -model far -warnings off -d MPW -d __STDC__=1 ∂
- -i {ObjDir} -i :::h
- LinkOptions = -d -c 'MPS ' -t MPST -mf -model far
- AntlrOptions = -k 2 -gt -gh
- DlgOptions = -C2
-
- GrammarFiles = ∂
- decl.g ∂
- func.g ∂
- expr.g
-
- Objects = ∂
- {ObjDir}scan.c.o ∂
- {ObjDir}decl.c.o ∂
- {ObjDir}err.c.o ∂
- {ObjDir}engl.c.o ∂
- {ObjDir}expr.c.o ∂
- {ObjDir}func.c.o ∂
- {ObjDir}main.c.o ∂
- {SymObjDir}sym.c.o ∂
- "{CLibraries}"StdCLib.o ∂
- "{Libraries}"Stubs.o ∂
- "{Libraries}"Runtime.o ∂
- "{Libraries}"Interface.o
-
- {ObjDir}parser.dlg ƒ {GrammarFiles}
- antlr -o {ObjDir} {AntlrOptions} {GrammarFiles}
-
- {ObjDir}decl.c ƒ {ObjDir}parser.dlg
-
- {ObjDir}err.c ƒ {ObjDir}parser.dlg
-
- {ObjDir}expr.c ƒ {ObjDir}parser.dlg
-
- {ObjDir}func.c ƒ {ObjDir}parser.dlg
-
- {ObjDir}scan.c ƒ {ObjDir}parser.dlg
- dlg -o {ObjDir} {DlgOptions} {ObjDir}parser.dlg scan.c
-
- {ObjDir}decl.c.o ƒ {ObjDir}decl.c
-
- {ObjDir}engl.c.o ƒ engl.c
-
- {ObjDir}err.c.o ƒ {ObjDir}err.c
-
- {ObjDir}expr.c.o ƒ {ObjDir}expr.c
-
- {ObjDir}func.c.o ƒ {ObjDir}func.c
-
- {ObjDir}main.c.o ƒ main.c
-
- {ObjDir}scan.c.o ƒ {ObjDir}scan.c
-
- {SymObjDir}sym.c.o ƒ {SymDir}sym.c
-
- {SymObjDir} ƒ {SymDir}
- {ObjDir} ƒ :
- {ObjDir} ƒ {ObjDir}
-
- proto ƒƒ {Objects}
- Link {LinkOptions} -o proto {Objects}
-